x, y, z, t_1, t_2, t_3 = [int(i) for i in input().split()]
total_1 = abs(x - y) * t_1
l = abs(x - z) * t_2
total_2 = l + (abs(x - y) * t_2 + t_3 * 3)
if total_2 > total_1:
print('NO')
else:
print('YES')
#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y,z,t1,t2,t3;
cin>>x>>y>>z>>t1>>t2>>t3;
int a=abs(z-x)*t2+3*t3+abs(y-x)*t2;
int b=abs(x-y)*t1;
if(b>=a){
cout<<"YES"<<endl;
}
else{
cout<<"NO"<<endl;
}
}
1092. Shortest Common Supersequence | 1044. Longest Duplicate Substring |
1032. Stream of Characters | 987. Vertical Order Traversal of a Binary Tree |
952. Largest Component Size by Common Factor | 212. Word Search II |
174. Dungeon Game | 127. Word Ladder |
123. Best Time to Buy and Sell Stock III | 85. Maximal Rectangle |
84. Largest Rectangle in Histogram | 60. Permutation Sequence |
42. Trapping Rain Water | 32. Longest Valid Parentheses |
Cutting a material | Bubble Sort |
Number of triangles | AND path in a binary tree |
Factorial equations | Removal of vertices |
Happy segments | Cyclic shifts |
Zoos | Build a graph |
Almost correct bracket sequence | Count of integers |
Differences of the permutations | Doctor's Secret |
Back to School | I am Easy |